You are here: Language Elements and Expressions > Operators > Mathematical Operators
Operator
Meaning
Example
+
Addition
A=B+C
-
Subtraction
A=B-C
*
Multiplication
A=B*C
/
Division
A=B/C
Mod or @
Modulus
A=B Mod C (assigns the remainder of B divided by C to A)
**
Exponentiation
A=B**C (assigns the value of B raised to the C power)